/* ── Qubee Theater self-hosted fonts (see docs/plans/theater-client-homepage.md §Step 1) ──
   Bodoni Moda (display), Archivo (body), IBM Plex Mono (mono). Self-hosted .woff2 in
   public/fonts/ — replaces the mockup's base64 data-URI faces.

   Why this lives in public/ (not src/styles/globals.css): CRA's css-loader resolves every
   url() in webpack-processed CSS as a module, so root-relative url('/fonts/…') references to
   public assets fail the build ("Module not found: /fonts/…"). Serving these @font-face rules
   from a static stylesheet keeps the /fonts/*.woff2 URLs (and the index.html <link rel=preload>)
   working while bypassing webpack. Linked from public/index.html. Roboto (Google) stays as-is. */

/* Bodoni Moda — display */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('/fonts/bodoni-moda-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/bodoni-moda-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/bodoni-moda-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/bodoni-moda-latin-900-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/bodoni-moda-latin-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/bodoni-moda-latin-600-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/bodoni-moda-latin-700-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/bodoni-moda-latin-900-italic.woff2') format('woff2');
}

/* Archivo — body */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/archivo-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/archivo-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/archivo-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/archivo-latin-700-normal.woff2') format('woff2');
}

/* IBM Plex Mono — mono */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
}
