/* Import fonts - these must be the first lines in your CSS file */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap");

/* Rest of your CSS styles go below the imports */

/* Roboto Condensed */
.roboto-condensed {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
}

/* Montserrat */
.montserrat {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

/* Poppins */
.poppins {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

/* Open Sans */
.open-sans {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}
