Black Squad's launcher creates a font like
```c font = CreateFontW(12, 0, 0, 0, 0, 0, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0x80 /* ??? */ | FF_ROMAN, L""); ```
This confuses Wine and causes it to pick a sans serif font instead of a serif one.
-- v2: win32u: Explicitly check for font family bits. gdi32/tests: Test font creation by family.