/* ===========================================================================
   LED MARK — fonts

   This site loads NO fonts from Google. Nothing here contacts an external
   server, so no visitor IP address leaves the page and no consent is needed.

   Right now the site runs on system fonts (see the stacks in site.css).
   That is legally safe and looks decent, but it is not the intended typeface.

   ---------------------------------------------------------------------------
   TO GET THE INTENDED TYPOGRAPHY BACK — about ten minutes of work
   ---------------------------------------------------------------------------

   1. Go to  https://gwfh.mranftl.com/fonts   (google-webfonts-helper).
      It packages Google Fonts as downloadable, self-hostable files.

   2. Download these four families, charset "latin" (plus "arabic" for the
      last one), format "woff2", weights as listed:

        Archivo                 300, 400, 500, 600, 700, 800
        IBM Plex Sans           300, 400, 500
        IBM Plex Mono           400, 500
        IBM Plex Sans Arabic    300, 400, 500

   3. Put every .woff2 file into  assets/fonts/  — do not rename them.

   4. Delete the opening comment marker below (the line reading
      "REMOVE THIS LINE") and the closing one, so the @font-face rules become
      active. Check the file names against what you downloaded.

   5. Done. No further change needed anywhere else — site.css already asks for
      these families first and falls back to system fonts if they are missing.

   Licensing: Archivo and IBM Plex are both licensed under the SIL Open Font
   License, so self-hosting them is permitted.
   =========================================================================== */

/* REMOVE THIS LINE TO ACTIVATE  -->

@font-face{
  font-family:'Archivo';
  src:url('../fonts/archivo-v19-latin-regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Archivo';
  src:url('../fonts/archivo-v19-latin-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Archivo';
  src:url('../fonts/archivo-v19-latin-600.woff2') format('woff2');
  font-weight:600; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Archivo';
  src:url('../fonts/archivo-v19-latin-700.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Archivo';
  src:url('../fonts/archivo-v19-latin-800.woff2') format('woff2');
  font-weight:800; font-style:normal; font-display:swap;
}

@font-face{
  font-family:'IBM Plex Sans';
  src:url('../fonts/ibm-plex-sans-v19-latin-300.woff2') format('woff2');
  font-weight:300; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'IBM Plex Sans';
  src:url('../fonts/ibm-plex-sans-v19-latin-regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'IBM Plex Sans';
  src:url('../fonts/ibm-plex-sans-v19-latin-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}

@font-face{
  font-family:'IBM Plex Mono';
  src:url('../fonts/ibm-plex-mono-v19-latin-regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'IBM Plex Mono';
  src:url('../fonts/ibm-plex-mono-v19-latin-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}

@font-face{
  font-family:'IBM Plex Sans Arabic';
  src:url('../fonts/ibm-plex-sans-arabic-v12-arabic-300.woff2') format('woff2');
  font-weight:300; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'IBM Plex Sans Arabic';
  src:url('../fonts/ibm-plex-sans-arabic-v12-arabic-regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'IBM Plex Sans Arabic';
  src:url('../fonts/ibm-plex-sans-arabic-v12-arabic-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}

<-- REMOVE THIS LINE TO ACTIVATE */
