/*
 * custom.css — the handful of things Tailwind can't do.
 *
 * Loaded AFTER tailwind.output.css so it can override anything.
 * Keep this file near-empty. New styling belongs in inline Tailwind
 * utility class strings on the .php templates, or in tailwind.config.js
 * (shared with warzone-web).
 *
 * See .github/copilot-instructions.md § 5.4 for the rules.
 */

/* --- Font: Inter Variable (self-hosted) ---
 * Registered as `Inter` to match Tailwind's fontFamily.sans config so
 * class="font-sans" resolves to this file. Same file that warzone-web
 * uses (both projects ship an identical InterVariable.woff2). */
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/InterVariable.woff2') format('woff2-variations'),
         url('/assets/fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
