/* Font Family Variables */
:root {
    --primary-font: "Montserrat", sans-serif;
    --secondary-font: "Kanit", sans-serif;
}

/* Font Usage Classes */
.primary_font {
    font-family: var(--primary-font);
    font-style: normal;
}
.secondary_font {
    font-family: var(--secondary-font);
    font-style: normal;
}
.secondary_italic {
    font-style: italic;
    font-family: var(--secondary-font);
}

/* Font Weights */
.font__light {
    font-weight: 300;
}
.fw__reg {
    font-weight: 400;
}
.fw__med {
    font-weight: 500;
}
.fw__semiBold {
    font-weight: 600;
}
.fw__bold {
    font-weight: 700;
}
.fw__extrabold {
    font-weight: 900;
}
.fw__thin {
    font-weight: 100;
}

/* Font Family Classes */
.heading-font,
.primary-regular-font,
.primary-medium-font,
.primary-semibold-font,
.primary-bold-font {
    font-family: var(--primary-font);
}
.secondary-regular-font,
.secondary-semibold-font {
    font-family: var(--secondary-font);
}

/* Optional: wrapper class for fixed Kanit */
.secondary_font-wrappers {
    font-family: "Kanit", sans-serif;
}

/* Font Sizes */
.level-1 {
    font-size: 38px;
}
.level-2 {
    font-size: 30px;
}
.level-3 {
    font-size: 23px;
}
.level-4 {
    font-size: 18px;
}
.level-5 {
    font-size: 16px;
}
.level-6 {
    font-size: 13px;
}
.level-7 {
    font-size: 12px;
}
.level-8 {
    font-size: 9px;
}

/* Responsive Font Sizes */
@media (max-width: 1024px) {
    .level-1 {
        font-size: 35px;
    }
    .level-2 {
        font-size: 30px;
    }
    .level-3 {
        font-size: 20px;
    }
    .level-4 {
        font-size: 15px;
    }
    .level-5 {
        font-size: 13px;
    }
    .level-6 {
        font-size: 12px;
    }
    .level-7 {
        font-size: 10px;
    }
    .level-8 {
        font-size: 9px;
    }
}
@media (max-width: 992px) {
    .level-6 {
        font-size: 9px;
    }
}
