/* SPDX-License-Identifier: LicenseRef-Qualia-Proprietary */
/* SPDX-FileCopyrightText: 2026 Qualia Core Pty Ltd (ACN 695 723 598) */

/*
 * Qualia brand tokens — CSS custom properties + self-hosted fonts.
 * Canonical source: libs/brand (see identity.md). Do not fork values into components.
 * Copyright (c) 2026 Qualia Core Pty Ltd (ACN 695 723 598). All rights reserved.
 *
 * Fonts are variable, latin-subset, SIL OFL-licensed (licences in ../fonts/).
 * The font path assumes fonts/ is deployed alongside this stylesheet's consumer;
 * adjust the url() at bundle time if your deploy layout differs.
 */

@font-face{
  font-family:"Fraunces";
  src:url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight:400 600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Inter";
  src:url("../fonts/inter-var.woff2") format("woff2");
  font-weight:400 600;
  font-style:normal;
  font-display:swap;
}

:root{
  /* palette */
  --q-ink:#17181B;
  --q-bone:#F5F3EE;
  --q-bronze:#A9825A;
  --q-grey:#8A8A85;
  --q-hairline:#E4E1D9;
  --q-white:#FFFFFF;

  /* living accent (animated contexts rotate sage->bronze->teal; static = bronze) */
  --q-accent:var(--q-bronze);
  --q-accent-sage:#7C8A73;
  --q-accent-teal:#1F4E48;

  /* typography */
  --q-font-display:"Fraunces","Iowan Old Style","Palatino Linotype",Georgia,serif;
  --q-font-body:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --q-tracking-display:-0.015em;
  --q-tracking-label:0.2em;
}
