/*
 * CSS Import Fix
 * 
 * This file consolidates any @import statements that need to be
 * at the top of the CSS bundle to resolve the CSS import order error.
 * 
 * ALL @import rules MUST be in this file and at the very top!
 */

/* Google Fonts - These must be at the very top */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap');

/* 
 * Critical: All @import rules are defined here first
 * to ensure they appear at the top of the bundled stylesheet.
 * This prevents the "Define @import rules at the top of the stylesheet" error.
 */

/*
 * This is the FIRST CSS file imported in the application.
 * Any actual @import rules needed by third-party libraries should be added above.
 */

/* All other CSS imports are handled via JavaScript imports in index.js */
/* This file acts as a CSS import order guard */