/*
 * Amstrad-style font.
 * Drop the actual font files into wwwroot/assets/fonts/ when available.
 * Until then we fall back to a monospace stack that mimics the spirit.
 */
@font-face {
    font-family: 'Amstrad';
    src: url('/assets/fonts/amstrad.woff2') format('woff2'),
         url('/assets/fonts/amstrad.woff')  format('woff'),
         url('/assets/fonts/amstrad.ttf')   format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-amstrad: 'Amstrad', 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
}
