/* ═══════════════════════════════════════════════════════════════════
   SAGEFUL — brand typeface
   ───────────────────────────────────────────────────────────────────
   Axiforma is the brand face. It is a commercial licence (Kastelov),
   so the files are not in this repo.

   TO ACTIVATE IT SITE-WIDE:
     1. Buy/obtain the Axiforma web licence.
     2. Drop the .woff2 files into  /fonts/  with exactly these names:
          Axiforma-Light.woff2       (300)
          Axiforma-Regular.woff2     (400)
          Axiforma-Medium.woff2      (500)
          Axiforma-SemiBold.woff2    (600)
          Axiforma-Bold.woff2        (700)
     3. Uncomment the @font-face block below.

   ── WHY IT IS COMMENTED OUT ──────────────────────────────────────
   These rules used to be live. Because /fonts/ does not exist yet,
   every visitor's browser requested all five files and got five 404s
   on EVERY page load, on every page of every site. Netlify's request
   log was roughly a third failed font requests.

   The rendering was never affected: the font stacks all read
   'Axiforma', 'Plus Jakarta Sans', system-ui — so the browser falls
   straight through to Plus Jakarta Sans, the closest free geometric
   sans (same generous apertures, same slightly humanist geometry,
   similar lowercase width). Commenting the block out changes nothing
   visually and removes the failed requests entirely.

   A @font-face pointing at a file that does not exist is not a
   harmless placeholder. It is a guaranteed 404 per weight per page.

   This file contains ONLY @font-face rules. No selectors, so it can be
   loaded by legacy pages that still carry their own CSS without any
   risk of collision.

   Served from three sites (sageful.app, login.sageful.app and the
   dashboard). Keep the copies identical.
   ═══════════════════════════════════════════════════════════════════ */

/* UNCOMMENT THE BLOCK BELOW once the .woff2 files are in /fonts/.

@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('/fonts/Axiforma-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*/
