/* ==========================================================================
   Strict Font Enforcement - VayuOS Bundled Fonts Only
   --------------------------------------------------------------------------
   Purpose: Define all site fonts with NO system fallbacks
   Critical: These fonts MUST load before text renders
   Strategy: font-display: block prevents system font substitution
   ========================================================================== */

/* --------------------------------------------------------------------------
   AlanSans - Variable Weight Geometric Sans-Serif
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "AlanSans";
  src: url("/assets/fonts/AlanSans-VariableFont.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

/* --------------------------------------------------------------------------
   LeagueSpartan - Variable Weight Condensed Sans-Serif
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "LeagueSpartan";
  src: url("/assets/fonts/LeagueSpartan-VariableFont.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

/* --------------------------------------------------------------------------
   OpenSans - Regular Weight Classic Sans-Serif
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "OpenSans";
  src: url("/assets/fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* --------------------------------------------------------------------------
   Gayathri - Bold Weight Display Font
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Gayathri";
  src: url("/assets/fonts/Gayathri-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* --------------------------------------------------------------------------
   Global Font Enforcement
   --------------------------------------------------------------------------
   Strategy: Set default font on html/body for elements without explicit fonts
   All other CSS files have been updated to remove system font fallbacks
   This ensures only bundled fonts are used while allowing font variety
   -------------------------------------------------------------------------- */
html,
body {
  font-family: "OpenSans";
}