/*
 * cc-org-identity.css -- Google Developer Group at Florida International University.
 *
 * 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.
 *
 * Google Sans is not licensed for web embedding. The stack names it first --
   it renders for anyone whose machine has it -- and falls back to Roboto,
   which is Google's own public face.
 *
 * Loaded LAST in <head> so it wins over each page's own inline <style>.
 */

:root {
  --org-accent: #4285F4;
  --org-accent-dark: #1a5fd0;
  --org-font: "Google Sans", "Google Sans Text", "Product Sans", Roboto, Arial, 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);
}
