/* FILE: main/typography/_typography.scss */ // // Theme typography // // Font families %font_body { font-family: #{ map_get( $customize_options, 'font-family-body' ) }; } %font_headings { font-family: #{ map_get( $customize_options, 'font-family-headings' ) }; } %font_logo { font-family: #{ map_get( $customize_options, 'font-family-logo' ) }; text-rendering: auto; } %font_inherit { font-family: inherit; } html { @extend %font_body; } // Font weights body { @extend %font_weight_300; } b, strong { @extend %font_weight_700; }