/* ===========================================================
   Lovins Work — Brand Fonts (Orbitron + Exo 2)
   Shared across all subdomains
   =========================================================== */

/* --- Orbitron --- */
@font-face {
  font-family: 'Orbitron';
  src: url('/fonts/Orbitron/static/Orbitron-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('/fonts/Orbitron/static/Orbitron-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* --- Exo 2 --- */
@font-face {
  font-family: 'Exo 2';
  src: url('/fonts/Exo_2/static/Exo2-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Exo 2';
  src: url('/fonts/Exo_2/static/Exo2-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

/* --- Global Font Variables --- */
:root {
  --font-title: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
}

/* --- Utility Assignments (optional) --- */
body {
  font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
