/* Self-hosted fonts — loaded before any layout CSS */

/* Poppins */
@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/poppins/Poppins-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/poppins/Poppins-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/poppins/Poppins-Bold.ttf') format('truetype');
}

/* Unbounded */
@font-face {
    font-family: 'Unbounded';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/unbounded/Unbounded-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Unbounded';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/unbounded/Unbounded-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Unbounded';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/unbounded/Unbounded-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Unbounded';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('/static/fonts/unbounded/Unbounded-Bold.ttf') format('truetype');
}

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