/*
 * Locally hosted fonts — no external CDN connections.
 *
 * Required files in httpdocs/font/:
 *   arvo-bold.woff2          → https://fonts.google.com/specimen/Arvo  (Bold 700)
 *   dm-sans-400.woff2        → https://fonts.google.com/specimen/DM+Sans  (Regular 400)
 *   dm-sans-500.woff2        → https://fonts.google.com/specimen/DM+Sans  (Medium 500)
 *   jetbrains-mono-500.woff2 → https://fonts.google.com/specimen/JetBrains+Mono  (Medium 500)
 *
 * Download via: https://gwfh.mranftl.com/fonts  (google-webfonts-helper)
 * Select "latin" subset only, download woff2, rename to match above.
 */

@font-face {
    font-family: 'Minecraft';
    src: url('../font/Minecraft.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'BurbankBigCondensed-Black';
    src: url('../font/BurbankBigCondensed-Black.otf') format('opentype');
    font-display: swap;
}

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

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/dm-sans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../font/dm-sans-500.woff2') format('woff2');
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../font/jetbrains-mono-500.woff2') format('woff2');
}
