:root {
  --font-display: "EB Garamond", serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
}

@layer base {
  body {
    font-family: var(--font-body);
    background-color: black;
    color: white;
  }

  h1,
  h2 {
    font-family: var(--font-display);
  }
}