Since Google Fonts only offers an outdated version of Inter that doesn't ship with all glyphs, here is a package with Inter v4 as originally distributed by RSMS.
npm i --save dist-font-interImport the static Inter font:
import "dist-font-inter";And use it in your styles as follows:
body {
font-family: "Inter";
}Alternatively, it is also possible to import the variable font:
import "dist-font-inter/variable";And then used it as follows:
body {
font-family: "InterVariable";
}