How can I change only the title font but retain the default font for the child of the Card component of Ant Design?
Sample Card component:
// How to change title style
<Card title="Default" extra={<a href="#">More</a>} style={{ width: 300 }}>
<p>Card content</p>
<p>Card content</p>
<p>Card content</p>
</Card>