/* ==========================================================================
   Solution Makers — English version (LTR)
   Imports the shared design system, then adds English fonts.
   Usage on English pages: <html dir="ltr" lang="en">
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap");
@import url("core.css");
@import url("layout.css");

:root {
  --font-base: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-head: "Poppins", var(--font-base);
}

body { font-family: var(--font-base); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); }
html[dir="ltr"] { text-align: left; }
