/* Importing the Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* Use CSS custom properties from font-weights.css */
@import url('font-weights.css');

/* Defining CSS custom property for Montserrat font */
:root {
    --font-montserrat: "Montserrat", sans-serif; /* Default Montserrat font */
}

/* Regular weight style for Montserrat font */
.montserrat-regular {
    font-family: var(--font-montserrat); /* Use Montserrat font */
    font-weight: var(--font-weight-regular); /* Regular weight */
    font-style: normal; /* Normal style */
}

/* Bold weight style for Montserrat font */
.montserrat-bold {
    font-family: var(--font-montserrat); /* Use Montserrat font */
    font-weight: var(--font-weight-bold); /* Bold weight */
    font-style: normal; /* Normal style */
}

/* Extra Bold weight style for Montserrat font */
.montserrat-extra-bold {
    font-family: var(--font-montserrat); /* Use Montserrat font */
    font-weight: var(--font-weight-extra-bold); /* Extra bold weight */
    font-style: normal; /* Normal style */
}
