/*
 * cc-org-identity.css -- Swift Club at FIU.
 *
 * 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.
 *
 * Real SF Pro on the Macs and iPhones this club actually builds on; Inter
   everywhere else. Nothing to download either way.
 *
 * Loaded LAST in <head> so it wins over each page's own inline <style>.
 */

:root {
  --org-accent: #FA7343;
  --org-accent-dark: #c8501f;
  --org-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Inter, sans-serif;
  --org-font-label: var(--org-font);
  --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);
}
