/**
 * @file fonts.css
 * Sinduri brand typography — Lexend from Google Fonts.
 *
 * Overrides Mercury's default Outfit font.
 * Placed in the web root so Mercury auto-detects it via hook_library_info_alter().
 *
 * Weights loaded:
 *   400 — Regular  (body, h3–h6)
 *   500 — Medium   (h2)
 *   600 — SemiBold (h1)
 *
 * font-display: swap ensures text remains visible during font load.
 */

@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600&display=swap");

/* ============================================================
   Base typography
   ============================================================ */
body {
  font-family: "Lexend", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lexend", "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.2;
}

h1 {
  font-weight: 600;
}

h2 {
  font-weight: 500;
}

h3,
h4,
h5,
h6 {
  font-weight: 400;
}
