/* ============================================
   HOG FONTS — Hardcore Online Gaming
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&family=Share+Tech+Mono&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --hog-font-display: 'Orbitron', sans-serif;
  --hog-font-heading: 'Rajdhani', sans-serif;
  --hog-font-body: 'Inter', sans-serif;
  --hog-font-mono: 'Share Tech Mono', monospace;
}

.hog-font-display   { font-family: var(--hog-font-display); }
.hog-font-heading   { font-family: var(--hog-font-heading); }
.hog-font-body      { font-family: var(--hog-font-body); }
.hog-font-mono      { font-family: var(--hog-font-mono); }

/* Fluid Type Scale */
.hog-display-xl {
  font-family: var(--hog-font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hog-display-lg {
  font-family: var(--hog-font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
}
.hog-heading-xl {
  font-family: var(--hog-font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.hog-heading-lg {
  font-family: var(--hog-font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
}
.hog-heading-md {
  font-family: var(--hog-font-heading);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
}
.hog-label {
  font-family: var(--hog-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hog-body-lg {
  font-family: var(--hog-font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 400;
}
.hog-body-md {
  font-family: var(--hog-font-body);
  font-size: 0.95rem;
  line-height: 1.65;
}
.hog-mono {
  font-family: var(--hog-font-mono);
  font-size: 0.85rem;
}
