FormControlLabel’s label
prop accepts a node
, so you can pass in a Typography element and style it the same way you style the rest of the text in your app.
eg.
<FormControlLabel
label={<Typography variant="body2" color="textSecondary">Foo</Typography>}
/>