6.6 - Font Families
Source: variables/_font-families.scss, line 48
Font Families are in the map $font-families
paragraph: Lato,title: Rubik,highlight: Rubikicon: icomoon
Font Families can be called in the sass project using the functions:
font-family($font-family, $true-val:false) which will output by default the CSS variable
Usage of font-family():
font-family(title)=>var(--font-family-title)If $use-css-var = truefont-family(title)=>"Rubik", "Helvetica Neue", Arial, sans-serifIf $use-css-var = falsefont-family(title, true)=>"Rubik", "Helvetica Neue", Arial, sans-serif