/*
 * Self-hosted Roboto font for MudBlazor
 * Download font files from: https://fonts.google.com/specimen/Roboto
 * Required weights: 300 (Light), 400 (Regular), 500 (Medium), 700 (Bold)
 *
 * To download the font files:
 * 1. Visit https://fonts.google.com/specimen/Roboto
 * 2. Select weights 300, 400, 500, 700
 * 3. Download the font family
 * 4. Convert to woff2 format if needed (use tools like Font Squirrel)
 * 5. Place files in wwwroot/fonts/roboto/
 */

/* Roboto Light (300) */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'),
         url('../fonts/roboto/roboto-v30-latin-300.woff2') format('woff2');
}

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

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

/* Roboto Bold (700) */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'),
         url('../fonts/roboto/roboto-v30-latin-700.woff2') format('woff2');
}
