/* ============================================================
   Material Icons + Inter — self-hosted (Google Fonts પર આધાર નહીં)
   ------------------------------------------------------------
   પહેલાં index.html માં fonts.googleapis.com ની બે render-blocking CSS કડી હતી;
   એ બંને માટે અલગ DNS + TLS + રાઉન્ડટ્રિપ થતાં (અને Google બ્લોક/ધીમું હોય તેવા
   કમ્પ્યુટર પર આઇકન ચોરસ ખાનાં દેખાતાં). હવે બંને અહીંથી જ આવે છે અને sw.js માં કેશ થાય છે.
   Anek Gujarati અલગ ફાઈલમાં છે — fonts/anek-gujarati.css
   ફરી ઉતારવા: scratchpad/fetchfonts.js ચલાવો (Google પરથી તાજી ફાઈલ લે છે).
   ============================================================ */

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: block;   /* આઇકન અડધી ક્ષણ પણ લખાણ તરીકે ન દેખાય */
  src: url(material-icons.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Inter — variable font, ફક્ત latin સબસેટ.
   ⚠️ Google હવે Inter ને *એક જ* variable ફાઈલ તરીકે આપે છે — ૪૦૦/૬૦૦/૭૦૦/૮૦૦ ચારેય વજન
   માટે એ જ ફાઈલ આવતી હતી (૪ સરખી નકલ = ૧૯૩KB). એટલે અહીં એક જ ફાઈલ અને
   font-weight ની આખી શ્રેણી (100 900) — બ્રાઉઝર જોઈતું વજન એમાંથી જ કાઢી લે છે. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
