Fonts
I like 'Nunito' font and have used it in the framework. In some projects, I might want to experiment with some new font. Because of this the framework does not import any font by default and leaves the choice up to the user. You can easily set it up in your project, just follow the steps on Google fonts website.
Customizing font style
Just select your favourite font, add it into your style and change the base font CSS variable and the font will get applied throughout your site.
:root {
--base-font-family: "Chivo", sans-serif;
}
You could also have different font based on the theme, to learn more about themes refer Themes section.
Icon fonts
To make icon styling easier the framework recommends using google icons. These icons also look nice. As with text fonts though the framework does not import any icon fonts by default and the user is free to use any they like.
Refer the Setup section to read to know set up fonts and icons.