/* Language-specific CSS Loader
 * This file imports the appropriate language CSS file based on the current locale
 * It should be included after fonts.css but before design2.css
 */

/* Base fonts for all languages */
@import url('fonts.css');

/* Language-specific fonts and settings */
@import url('languages/en.css'); /* Default English */

/* Other language stylesheets are loaded dynamically via JavaScript
 * based on the lang attribute of the html element
 */

/* The following is handled via JavaScript:
 * If html[lang="es"] → load languages/es.css
 * If html[lang="fr"] → load languages/fr.css
 * If html[lang="de"] → load languages/de.css
 * If html[lang="zh"] → load languages/zh.css
 * If html[lang="ja"] → load languages/ja.css
 * If html[lang="ko"] → load languages/ko.css
 * If html[lang="vi"] → load languages/vi.css
 */ 