/* File: /assets/css/core/fonts.css
   Owner: EC
   Purpose: Load approved brand fonts (self-hosted + licensed)
   Version: 1.0
   Updated: 2025-11-08
   Notes (ALCOA-C):
     - All font families and licenses verified 2025-11-08.
     - Fonts stored locally under /assets/fonts/ for version control and privacy.
     - font-display: swap used throughout to avoid FOIT.
     - No CDN calls or tracking.
     - Font-synthesis disabled to prevent faux weights/styles.
*/

/* =============================================================
   Delight
   -------------------------------------------------------------
   Font Name: Delight
   Designer: Rajesh Rajput
   Source: https://rajputrajesh-448.gumroad.com/l/Delight9
   License: Freeware License (non-redistributable)
   Terms:
     • Free for personal and commercial use.
     • Modification and redistribution prohibited.
     • Attribution ("Delight by Rajesh Rajput") appreciated, not required.
   Compliance: keep font files private (no public repo redistribution).
   ============================================================= */
@font-face {
  font-family: "Delight";
  src: url("/assets/fonts/delight/Delight-Regular.woff2") format("woff2"),
       url("/assets/fonts/delight/Delight-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Delight";
  src: url("/assets/fonts/delight/Delight-SemiBold.woff2") format("woff2"),
       url("/assets/fonts/delight/Delight-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Delight";
  src: url("/assets/fonts/delight/Delight-ExtraBold.woff2") format("woff2"),
       url("/assets/fonts/delight/Delight-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* =============================================================
   IBM Plex Mono
   -------------------------------------------------------------
   Font Name: IBM Plex Mono
   Author: IBM Corporation
   Source: https://github.com/IBM/plex
   Version: 1.1.0
   License: SIL Open Font License v1.1
   Reserved Font Name: "Plex"
   Terms:
     • Free to use, modify, and redistribute with license.
     • Cannot be sold by itself.
     • Modified versions must not use the reserved name "Plex".
   Compliance: include OFL license file with distribution.
   ============================================================= */
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2") format("woff2"),
       url("/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2") format("woff2"),
       url("/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2") format("woff2"),
       url("/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =============================================================
   Inter (UI Font)
   -------------------------------------------------------------
   Font Name: Inter / Inter Variable
   Author: Rasmus Andersson
   Source: https://rsms.me/inter/
   License: SIL Open Font License v1.1
   Terms:
     • Free to use, modify, and redistribute with license.
     • Recommended source: official CDN or self-hosted subset.
   Note: If self-hosted, store under /assets/fonts/inter/
   ============================================================= */
/* Recommended CDN load in HTML head:
<link rel="preconnect" href="https://rsms.me" crossorigin>
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
*/

/* =============================================================
   Inter Tight
   -------------------------------------------------------------
   Font Name: Inter Tight
   Source: https://fonts.google.com/specimen/Inter+Tight
   License: SIL Open Font License v1.1
   Terms:
     • Free to use, modify, and redistribute with license.
     • Served via Google Fonts or self-hosted subset.
   ============================================================= */
/* Recommended CDN load in HTML head:
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;400italic;600;700&display=swap" rel="stylesheet">
*/

/* =============================================================
   Global Font Behavior
   -------------------------------------------------------------
   Ensures ligatures and contextual alternates are on,
   disables synthetic bold/italic, keeps rendering consistent.
   ============================================================= */
:root {
  font-synthesis-weight: none;
  font-synthesis-style: none;
  font-feature-settings: "liga" 1, "calt" 1;
}
