/* Self-hosted Poppins font family */

/* Regular */
@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./img/fonts/Poppins-Regular.ttf') format('truetype');
}

/* Medium */
@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./img/fonts/Poppins-Medium.ttf') format('truetype');
}

/* SemiBold */
@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./img/fonts/Poppins-SemiBold.ttf') format('truetype');
}

/* Bold */
@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./img/fonts/Poppins-Bold.ttf') format('truetype');
}

/* Light */
@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('./img/fonts/Poppins-Light.ttf') format('truetype');
}

/* Apply the font to login page elements */
#login h1 {
    font-family: Poppins, Arial, sans-serif !important;
    font-weight: 300 !important;
}
