/**
 * Harmonia shared font loading — Acumin Pro (Adobe Systems).
 * SINGLE SOURCE OF TRUTH — copied identically into all three apps.
 *
 * Acumin Pro is a LICENSED Adobe typeface. The font files are NOT included in
 * this repo (they cannot be freely redistributed). To activate the brand font:
 *
 *   1. Obtain a license + the web font files (woff2/woff) for Acumin Pro.
 *      Options: Adobe Fonts desktop/self-host license, or purchase from Adobe.
 *   2. Drop the files into a `fonts/` folder next to this file, named as below.
 *   3. That's it — the @font-face rules below pick them up, offline.
 *
 * WHY SELF-HOSTED (not the Adobe CDN):
 *   The Player MUST run fully offline during a ceremony, so the font cannot be
 *   fetched from Adobe's servers at runtime. Self-hosting local files keeps all
 *   three apps consistent AND offline-safe. Until the files are added, every app
 *   falls back to the system sans-serif stack in --font-ui (see harmonia-tokens.css).
 *
 * WEB-ONLY ALTERNATIVE:
 *   If you prefer, the web app MAY instead load Acumin Pro from Adobe Fonts by
 *   adding <link rel="stylesheet" href="https://use.typekit.net/YOUR_KIT.css">
 *   to its index.html. Do NOT rely on this for the Electron Player (offline rule).
 */

@font-face {
  font-family: 'Acumin Pro';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src:
    url('fonts/AcuminPro-Regular.woff2') format('woff2'),
    url('fonts/AcuminPro-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Acumin Pro';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src:
    url('fonts/AcuminPro-Italic.woff2') format('woff2'),
    url('fonts/AcuminPro-Italic.woff') format('woff');
}

@font-face {
  font-family: 'Acumin Pro';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src:
    url('fonts/AcuminPro-Semibold.woff2') format('woff2'),
    url('fonts/AcuminPro-Semibold.woff') format('woff');
}

@font-face {
  font-family: 'Acumin Pro';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src:
    url('fonts/AcuminPro-Bold.woff2') format('woff2'),
    url('fonts/AcuminPro-Bold.woff') format('woff');
}
