/* Roboto Font - Self-Hosted */
/* 
Instructions: Download Roboto fonts from Google Fonts
1. Go to: https://fonts.google.com/specimen/Roboto
2. Download: Roboto Regular (400), Medium (500), Bold (700)
3. Convert to WOFF2 format
4. Place in /fonts/ directory as:
   - roboto-regular.woff2
   - roboto-medium.woff2
   - roboto-bold.woff2

Then uncomment the @font-face rules below:
*/

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

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

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