/* ─────────────────────────────────────────────────────────────
 * Mero — typography.
 * Loads web fonts and defines the base font-family.
 * Add utility classes back from the brand system as needed.
 * ───────────────────────────────────────────────────────────── */

@import url("./fonts.css");

html {
  font-family: var(--mero-font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* The only utility class the landing uses today. */
.mero-eyebrow {
  font-family: var(--mero-font-mono);
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
