/* Google Fonts Configuration */

:root {
  --font-primary: 'IBM Plex Sans', sans-serif;
  --font-headings: 'Roboto Serif', serif;
  --font-display: 'Orbitron', sans-serif;
}

/* Base Typography */
body {
  font-family: var(--font-primary);
  font-feature-settings: 'kern' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-headings);
  font-weight: 700;
}

/* Font Weight Utilities */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Text Classes */
.text-primary {
  font-family: var(--font-primary);
}

.text-heading {
  font-family: var(--font-headings);
}

/* Brand / Logo */
.anab-brand {
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Statistics / Counters */
.stat-number,
.display-font {
  font-family: var(--font-display);
  font-weight: 700;
}

/* Forms */
label,
.form-label {
  font-family: var(--font-primary);
  font-weight: 500;
}

input,
textarea,
select {
  font-family: var(--font-primary);
}

/* Buttons */
.du-btn,
button {
  font-family: var(--font-primary);
  font-weight: 600;
}

/* Navigation */
.navbar-text {
  font-family: var(--font-primary);
  font-weight: 500;
}

/* Cards */
.card-title {
  font-family: var(--font-headings);
  font-weight: 700;
}