/* Zad brand tokens. Drop this file in and use the custom properties; the fonts are self-hosted
   alongside it under fonts/. Canonical copy: https://zad.com.au/brand/zad.css */

:root {
  color-scheme: light dark;
  --zad-ink: #000000;
  --zad-paper: #ffffff;
  --zad-ember: #e0873f;
  --zad-ember-ink: #b8551a;
  --zad-muted: #5c6873;
  --zad-line: #d9dde2;
  --zad-surface: #f6f7f8;
  --zad-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --zad-text: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --zad-ink: #ffffff;
    --zad-paper: #000000;
    --zad-ember-ink: #e0873f;
    --zad-muted: #96a2ad;
    --zad-line: #2a2f34;
    --zad-surface: #0f1113;
  }
}

/* Variable fonts, SIL Open Font License 1.1 (licences alongside in fonts/). */
@font-face {
  font-family: "Space Grotesk";
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/SpaceGrotesk-var.woff2") format("woff2"), url("fonts/SpaceGrotesk-var.ttf") format("truetype");
}
@font-face {
  font-family: "DM Sans";
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
  src: url("fonts/DMSans-var.woff2") format("woff2"), url("fonts/DMSans-var.ttf") format("truetype");
}

/* Two classes, nothing more. The wordmark itself is an SVG and never set in live type. */
.zad-display { font-family: var(--zad-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.zad-text { font-family: var(--zad-text); font-weight: 400; line-height: 1.6; }
