/* =========================================================================
   LOCAL WEBFONTS

   The site's own type is Assistant, loaded from Google Fonts in header.php.
   Nothing here overrides that - this file only declares the Hebrew Open Sans
   faces so they are available to fall back on or opt into per rule.

   WHAT WAS WRONG WITH THE PREVIOUS VERSION
   ----------------------------------------
   1. No font-weight descriptor. One face was declared for the whole family, so
      a bold heading in Open Sans Hebrew got a SYNTHESISED bold - the browser
      smearing the regular weight - instead of the real OpenSansHebrew-Bold.
      The design uses that bold face, so this is the change that shows.
   2. 'Open Sans Hebrew' pointed at OpenSans-VariableFont_wdth,wght.ttf. That
      file does contain Hebrew, so it rendered, but it is 517KB of Google's
      Latin-first variable font standing in for the 33KB Hebrew family the
      design actually names - about 15x the bytes for the same text, in a face
      that is not quite the one in the PSD.
   3. Both src descriptors ended in a trailing comma, which is a syntax error.
      Browsers happen to recover from it, but it left the rules one parser
      change away from being dropped silently.
   4. A 'Heebo' face was declared that no rule in the theme ever referenced,
      alongside ~6.4MB of Heebo and Latin Open Sans .ttf files (including a
      full static/ directory of 45 weights) that nothing requested. Those are
      deleted; they are stock Google Fonts and can be re-downloaded if needed.

   Only the two weights the design actually uses are kept - Regular and Bold.
   The theme sets no italic anywhere, so no italic faces are declared: if one
   is ever needed the browser will synthesise an oblique rather than silently
   loading a 36KB file that is never drawn.

   font-display: swap matches the Google Fonts request in header.php, so text
   is painted immediately in the fallback rather than being invisible while a
   face downloads.
   ========================================================================= */

@font-face {
    font-family: 'Open Sans Hebrew';
    src: url('OpenSansHebrew-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Hebrew';
    src: url('OpenSansHebrew-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
