/* ============================================================
   TYPOGRAPHY
   Self-hosted, two families (see base/tokens.css --font-display /
   --font-body):
     - Ranchers — headline + sub-headline, single weight 400.
     - Arimo — body copy, weights 400/700 + italic.
   Both are free Google Fonts (SIL OFL).
   ============================================================ */

@font-face {
  font-family: 'Ranchers';
  src: url('../../fonts/ranchers/ranchers-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arimo';
  src: url('../../fonts/arimo/arimo-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arimo';
  src: url('../../fonts/arimo/arimo-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Arimo';
  src: url('../../fonts/arimo/arimo-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body { font-size: var(--text-base); line-height: 1.55; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: .97;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { line-height: 1.65; }

a.text-link {
  text-decoration: underline;
  text-underline-offset: .2em;
  text-decoration-color: var(--color-brass);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .7em;
  margin-bottom: var(--space-xs);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.muted { color: var(--color-muted-on-ink); font-size: .98rem; line-height: 1.65; }

.font-mono { font-family: var(--font-mono); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
