@charset "UTF-8";

/* -----------------------------------------------------------------

    Created on : 2020-12-11, 1:06 PM
    Author     : Sébastien FOURNIER <contact@sebastien-fournier.com>

    MIXIN FONTS :
    ============

------------------------------------------------------------------ */

@mixin fontsWeights($fonts-weights) {
    @each $size in $fonts-weights {
        .fw-#{$size} {
            font-weight: $size !important;
        }
    }
}