/* Self-hosted Atkinson Hyperlegible Next (SIL OFL). */
/* Folder: /static/css/fonts/atkinson/*.woff2 */


/* note to add more fonts 
-
within manage_theme.py route add next to theses -     # Typography (fonts + sizing)
    { "var": "--bs-font-sans-serif", "label": "Sans-serif font", "type": "select",
      "default": "system-ui, sans-serif",
      "options": [
        { "label": "System UI", "value": "system-ui, sans-serif" },
        { "label": "Helvetica", "value": "Helvetica, Arial, sans-serif" },
        { "label": "Roboto",    "value": "'Roboto', sans-serif" },
        { "label": "Atkinson Hyperlegible",
      "value": "'Atkinson Hyperlegible', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif" }
      ],
- also -
add in base html another - pointer - liked -    
    <link rel="preload"
        href="{{ url_for('static', filename='css/fonts/atkinson/AtkinsonHyperlegibleNext-Regular.woff2') }}"
        as="font" type="font/woff2" crossorigin nonce="{{ csp_nonce() }}">
    <link rel="stylesheet" href="{{ url_for('static', filename='css/fonts-atkinson.css') }}" nonce="{{ csp_nonce() }}">
and add the files akin to css/fonts-atkinson.css
and 
done alter then via theme builder */


@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/static/css/fonts/atkinson/AtkinsonHyperlegibleNext-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/static/css/fonts/atkinson/AtkinsonHyperlegibleNext-RegularItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/static/css/fonts/atkinson/AtkinsonHyperlegibleNext-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("/static/css/fonts/atkinson/AtkinsonHyperlegibleNext-BoldItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

/* No global body override here; Theme Builder will set --bs-font-sans-serif. */
