/*
 * cc-org-identity.css -- Upsilon Phi Epsilon.
 *
 * The org's voice, for every page that is not the gallery home page. The home
 * page gets the same typeface and accent from cc-gallery.css; this file carries
 * them to the rest of the site so an org reads as one thing end to end.
 *
 * The one serif in the set. An honor society should not read like the
   incubator two pages over. Gold darkened from #c8a646 for contrast.
 *
 * Loaded LAST in <head> so it wins over each page's own inline <style>.
 */

:root {
  --org-accent: #8A6D1F;
  --org-accent-dark: #6b5417;
  --org-font: "EB Garamond", Georgia, serif;
  --org-font-label: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --org-font-ui: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Pages built before the identity layer name their colour themselves.
     Point those names at the org instead of at whatever was handy. */
  --brand-primary: var(--org-accent);
  --brand-primary-dark: var(--org-accent-dark);
}

body {
  font-family: var(--org-font);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--org-font);
}
/* Form controls do not inherit the page font on their own. */
button, input, select, textarea {
  font-family: var(--org-font-ui);
}

/* Labels, eyebrows and small caps take the org's second face. */
.gx-kicker, .cc-kicker, .eyebrow, .label, .kicker,
figcaption, small {
  font-family: var(--org-font-label);
}
