/*
 * cc-org-identity.css -- Raspberry Pi Code Crunch.
 *
 * 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.
 *
 * Poppins is the Raspberry Pi Foundation's own face, and it is on Google
   Fonts -- the one org whose real typeface costs nothing to ship.
 *
 * Loaded LAST in <head> so it wins over each page's own inline <style>.
 */

:root {
  --org-accent: #C51A4A;
  --org-accent-dark: #9c1239;
  --org-font: Poppins, "Segoe UI", 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);
}
