Changing fonts in TLegend via gStyle

Here is a minimal example.

gStyle->SetTextFont(132);
gStyle->SetLegendFont(132);
TH1F *hTemp;
TLegend *legend = new TLegend(0,0,1,1,"Title");
legend->AddEntry(hTemp,"Temp");
legend->Draw();

The resulting legend still has font code 62. Adding the following will change the font for the word “Temp”, but not the word “Title”.