diff --git a/wp-content/themes/apus-theme/assets/css/style.css b/wp-content/themes/apus-theme/assets/css/style.css index 37879e1c..57f525fc 100644 --- a/wp-content/themes/apus-theme/assets/css/style.css +++ b/wp-content/themes/apus-theme/assets/css/style.css @@ -3,11 +3,10 @@ ========================================================================== */ :root { - /* Typography - Using system fonts by default (defined in fonts.css) */ - /* These will be overridden by fonts.css custom properties */ - --font-primary: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; - --font-secondary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; - --font-headings: Avenir, "Avenir Next LT Pro", Montserrat, Corbel, "URW Gothic", source-sans-pro, sans-serif; + /* Typography - Poppins como fuente principal (loaded via Google Fonts) */ + --font-primary: 'Poppins', sans-serif; + --font-secondary: 'Poppins', sans-serif; + --font-headings: 'Poppins', sans-serif; --font-code: "Consolas", "Monaco", "Courier New", Courier, monospace; /* Font Sizes - Fluid typography scale */ diff --git a/wp-content/themes/apus-theme/inc/enqueue-scripts.php b/wp-content/themes/apus-theme/inc/enqueue-scripts.php index 9df17616..b17e4fda 100644 --- a/wp-content/themes/apus-theme/inc/enqueue-scripts.php +++ b/wp-content/themes/apus-theme/inc/enqueue-scripts.php @@ -95,7 +95,7 @@ function apus_enqueue_main_stylesheet() { 'apus-main-style', get_template_directory_uri() . '/assets/css/style.css', array('apus-variables'), - '1.0.3', // Incremented again to bypass browser cache + '1.0.4', // Fix: Cambiar --font-primary a Poppins (era system-ui) 'all' ); }