/*
 * This file defines the locally-hosted fonts for the application.
 * Font files should be placed in the /static/fonts/ directory.
 */

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

/* Roboto Medium - 500 */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/static/fonts/Roboto-Medium.woff2') format('woff2');
}