/* Self-hosted fonts for VIPSpot 2025 - canonical form */

/* Orbitron */
@font-face{
  font-family:'Orbitron';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('/assets/fonts/orbitron-400.woff2') format('woff2');
}
@font-face{
  font-family:'Orbitron';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('/assets/fonts/orbitron-700.woff2') format('woff2');
}

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

/* Font stacks with system fallbacks */
:root {
  --heading: 'Orbitron', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --mono: 'Roboto Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
}

/* Apply font stacks */
h1, h2, h3, .font-orbitron { 
  font-family: var(--heading); 
}
code, kbd, pre, .font-robotoMono { 
  font-family: var(--mono); 
}