/home/moonrcjl/public_html/test/wp-content/themes/arsha/assets/scss/utils/_root.scss
@use 'colors' as *;
@use 'typography' as *;
@use 'typography' as *;

:root {
    /**
    @font family declaration
    */
    @each $ff, $shades in $font-family {
        @each $shade, $value in $shades {
            --mt-#{$ff}-#{$shade}: #{$value};
        }
    }

    /**
    @color declaration
    */
    @each $color, $shades in $colors {
        @each $shade, $value in $shades {
            --mt-#{$color}-#{$shade}: #{$value};
        }
    }

}