////////////////////////////////////////////////////////////////////////////////
// Typo
////////////////////////////////////////////////////////////////////////////////
$font-sizes: 15px, 16px, 17px, 18px, 20px, 21px, 22px, 26px, 32px, 34px, 36px;
$font-weights: 400, 500, 600, 700;

@each $size in $font-sizes {
    .fz-#{$size} {
        font-size: $size;
    }
}

@each $weight in $font-weights {
    .fw-#{$weight} {
        font-weight: $weight;
    }
}
