/* MORA base element styles — light-touch defaults so specimens & kits read on-brand. */
body {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  color: var(--text-body);
  background: var(--surface-page);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  /* Climate Crisis is a variable font with a YEAR axis (melts as years rise).
     Pin to 1990 for MORA's heavy display look. Inherited; Google Sans Flex ignores the unknown axis. */
  font-variation-settings: "YEAR" 1990;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 0;
  text-wrap: balance;
}

::selection {
  background: var(--accent);
  color: var(--color-ink);
}
