/* /shared/type.css — brand-neutral typography
 * Loaded by both brand gallery sites served from this host.
 *
 * Rules:
 *   - NO colour values
 *   - NO brand names
 *   - NO brand-specific mono font (each brand loads its own)
 *
 * Font coverage: IBM Plex Sans + Inter only (true common ground).
 * Each brand sets --font-mono and loads its own mono face in its own stylesheet.
 */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-display: 'IBM Plex Sans', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  /* Overridden by each brand's own stylesheet with its specific mono face */
  --font-mono:    ui-monospace, SFMono-Regular, 'Courier New', monospace;
}

/* Structural base for sprite icons — no colour, no brand */
.icon {
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
}
