/*
 * Roboto - self-hosted.
 *
 * Previously loaded from https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900
 * That request sent every visitor's IP address and User-Agent to Google before any
 * interaction, which is not permissible under GDPR without consent - and because Roboto is
 * the app-wide body font (Vuetify's only font-family is "Roboto,sans-serif"), gating it
 * behind a consent banner would leave the site unstyled for anyone who declined.
 * Self-hosting removes the third-party request entirely.
 *
 * Only 300/400/500/700 are included. The old URL also requested 100 and 900, but those are
 * reachable only via Vuetify's .font-weight-thin / .font-weight-black / .display-* utility
 * classes, none of which appear anywhere in this codebase.
 *
 * Roboto is licensed under the Apache License 2.0 - see LICENSE.txt in this directory.
 */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('roboto-300.woff2?v=1') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('roboto-400.woff2?v=1') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('roboto-500.woff2?v=1') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('roboto-700.woff2?v=1') format('woff2');
}
