/* 
 * File: core/css/reset.css
 * Purpose: Base styles, browser reset, and foundational typography.
 * Included in: All pages.
 */

/* 1. Box Model Reset */
*, 
*::before, 
*::after {
  box-sizing: border-box;
}

/* 2. Global Typography & Background */
body {
  margin: 0;
  padding: 0;
  font-family: 'Merriweather', 'Lato', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-outer);
}

/* 3. Input Element Reset */
button, 
input, 
textarea, 
select {
  font-family: inherit;
  font-size: inherit;
}
