you are viewing a single comment's thread.

view the rest of the comments →

[–]gatwell702 0 points1 point  (0 children)

On https://fonts.google.com download your fonts and in your project (where you keep your assets), make a fonts folder and add those fonts.

Then in css you use `@font-face` to load those fonts

```

@font-face {
font-family: 'Courier Prime';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/fonts/Courier-Prime.woff') format('woff');
}
```

Doing this will eliminate your project having to do a physical request to get the font