I'm using Yanone Kaffeesatz font from Google Fonts for headers on my site. When I set some outline, it turns out the font consists of many figures, each of them having their own stroke. How to make it look whole?
h2 {
font-size: 3.5em;
font-family: 'Yanone Kaffeesatz', sans-serif;
color: #25D366; /* also tried -webkit-text-fill-color: #25D366; - same effect */
-webkit-text-stroke: 1px black;
letter-spacing: 0.05em;
/*paint-order: fill stroke; - also tried - no effect */
}
<link href="https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@500&display=swap" rel="stylesheet">
<h2>Hello</h2>