3.1. Styles Import fonts - quan1997ap/angular-app-note GitHub Wiki

Import fonts

$font-family-otf: "FVHCircularXX";
$font-family-ttf: "Roboto_Mono";
$font-style: "Regular",
"Bold",
"Light",
"Medium",
"SemiBold",
"Book",
"Italic",
"MediumItalic";

// ttf
@each $font in $font-family-otf {
    @each $style in $font-style {
        @font-face {
            font-family: #{$font}-#{$style};
            src: url(/assets/fonts/#{$font}/#{$font}-#{$style}.otf) format("TrueType");
            }
        }
}

// otf
@each $font in $font-family-ttf {
    @each $style in $font-style {
        @font-face {
        font-family: #{$font}-#{$style};
        src: url(/assets/fonts/#{$font}/#{$font}-#{$style}.ttf) format("TrueType");
        }
    }
}