Using different Fonts

0
How do I import a font so that I can use it for my page headers? I’d like each of my headers to have the font “Marker-felt”; however, when I use the following CSS style it does not work. font-family: “Marker Felt”, fantasy; I downloaded the .ttf file for this font and saved it in my styles folder but this did not seem to work.    
asked
1 answers
0

we use google fonts,

in the atlas sass configeration you can specify what font you want.

I havnt added a local font but i think it would work the same

$font-family-import:                      "https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800";

$font-family-brand:                       'Open Sans', sans-serif;
$font-family-base:                        'Open Sans', sans-serif;

 

answered