/* boopcat — webfonts
 * Official brand faces (per design-system PDF v1.0):
 *   Nunito  → the "boopcat" wordmark ONLY
 *   Poppins → headings, subheadings, body
 *   Inter   → anything smaller than body (captions, labels, fine print)
 * Product-app faces (as shipped in the Figma/Tailwind build):
 *   Spline Sans       → app body / display
 *   Plus Jakarta Sans → app page titles (extrabold)
 * Material Symbols Outlined → product UI icon font
 *
 * SUBSTITUTION NOTE: brand .ttf binaries were not supplied, so all faces are
 * loaded from Google Fonts CDN. These ARE the real brand typefaces — for
 * production, self-host the .ttf/.woff2 files and swap these @imports for
 * local @font-face rules. */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400..900;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spline+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=block');

/* Material Symbols helper — match the product app's icon usage */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined.fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
