/*
 * Gorgonzola shared base styles.
 *
 * Scope is deliberately minimal. The site has two intentional color themes
 * (cobalt UI, parchment guides) and per-page accent colors, so the palette is
 * NOT centralized here. This file holds only what is universal across every
 * page: the box-model reset and the default body font. Pages may still set
 * their own body font (e.g. the monospace page) and that override wins.
 *
 * Linked before each page's own <style>, so anything a page declares overrides
 * this. See CONSISTENCY_TODO.md and tests/test_consistency.py.
 */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
}
