/*
 * Aeonik (CoType Foundry) — licensed webfont, NOT on Adobe/Google Fonts.
 *
 * GRI-678 weight system: exactly three weights, no Bold/Black.
 *   400 Regular  — body, labels, secondary numbers, inactive states
 *   500 Medium   — names, card titles, active/selected states
 *   600 SemiBold — true hero numbers only (max ~6-8 per screen)
 *
 * ACTIVATION (two steps, one commit):
 *   1. Drop the licensed files into this directory as
 *      Aeonik-Regular.woff2 / Aeonik-Medium.woff2 / Aeonik-SemiBold.woff2
 *   2. Uncomment the @font-face block below and push.
 * Until then the app font stack ("Aeonik", "Inter", …) silently resolves to
 * Inter. The block stays commented out so the missing woff2 files don't 404
 * on every page load (the CI live-browser smoke treats console resource
 * errors as failures).
 *
 * NOTE: if the licensed package has no SemiBold cut (classic Aeonik ships
 * Regular/Medium/Bold), point the 600 face at the closest heavier cut
 * (rename that file to Aeonik-SemiBold.woff2). Otherwise hero numbers would
 * silently render in Inter 600 while everything else is Aeonik.
 *
 * @font-face {
 *   font-family: "Aeonik";
 *   src: url("/fonts/aeonik/Aeonik-Regular.woff2") format("woff2");
 *   font-weight: 400;
 *   font-style: normal;
 *   font-display: swap;
 * }
 *
 * @font-face {
 *   font-family: "Aeonik";
 *   src: url("/fonts/aeonik/Aeonik-Medium.woff2") format("woff2");
 *   font-weight: 500;
 *   font-style: normal;
 *   font-display: swap;
 * }
 *
 * @font-face {
 *   font-family: "Aeonik";
 *   src: url("/fonts/aeonik/Aeonik-SemiBold.woff2") format("woff2");
 *   font-weight: 600;
 *   font-style: normal;
 *   font-display: swap;
 * }
 */
