tag if you have any issues with loading the font.
// This helps to force a repaint of the elements after the font has loaded.
document.addEventListener('DOMContentLoaded', function() {
setTimeout(function() {
var headings = document.querySelectorAll('h1, h2, h3, h4, h5, h6, .heading, .page-title, .article-title, .product-title');
headings.forEach(function(heading) {
heading.style.opacity = 0.99; // Force a repaint.
});
}, 500); // Adjust timeout if needed
});