// San Francisco Text Font Face

@mixin font-san-francisco-text($path: "../fonts/") {
    @each $fontWeight in 200, 300, 400, 500, 600, 700, 800 {
        @font-face {
            font-family: 'San Francisco Text';
            font-style: normal;
            font-weight: $fontWeight;
            src: url("#{$path}#{$fontWeight}.woff") format('woff');
        }
    }
}
