/*
 * Font face declarations, global resets, base typography. Loaded after
 * tokens.css so it can use the var(--*) values defined there.
 */

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/nunito-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/nunito-latin-600-normal.woff2") format("woff2");
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.45 "Nunito", system-ui, -apple-system,
        "Segoe UI", Roboto, sans-serif;
  min-height: 100dvh;
}
