/**
 * ─────────────────────────────────────────────
 *  CSS Barrel Index
 * ─────────────────────────────────────────────
 *
 *  This file uses the "barrel pattern" to re-export (import) a collection
 *  of CSS modules in a single place, making project imports simpler and
 *  more maintainable. Instead of importing each CSS file individually 
 *  throughout your project, you only need to import this index file.
 *
 *  All base styles, typography, and global site rules are centralized here.
 * 
 *  ➡️  Add new @import statements below as your CSS grows!
 * 
 *
 */

@import url("reset.css");
@import url("types.css");
@import url("site.css");
@import url("theme.css");