Skip to content

Fonts

In Astro, the fonts are static assets, in the public folder.

Site Fonts

Font NameUsage Role
MontserratBase font
Poller OneHeading font
Permanent MarkerDisplay font

SCSS

In @/styles/base/_typography.scss, exported to base and imported in index.scss which is linked in the BaseLayout.

@mixin fonts() {
& {
@font-face {
font-family: 'Montserrat';
src: url("/fonts/Montserrat-VariableFont_wght.ttf") format('truetype');
font-style: normal;
}
}
& {
@font-face {
font-family: 'Poller';
src: url("/fonts/PollerOne-Regular.ttf") format('truetype');
font-style: normal;
}
}
& {
@font-face {
font-family: 'Permanent Marker';
src: url("/fonts/PermanentMarker-Regular.ttf") format('truetype');
font-style: normal;
}
}
}