hello everyone, I am back with a new problem

This time, I have a problem with TextBillBoards and their width. The problem is that the text is not displayed in the same width for different words or small changes.
For example I want to display a fixedHeight text billboard. Let's call it "Aircraft Table". It will be displayed like in the v1.jpg attached image.
But if I drop the space and call it "AircraftTable", it will be displayed completely different as you can see in the v2.jpg attached image.
It's really a problem, because some texts are displayed larger than others and it seems that it's not the same font or font size that is used.
Here is the code for my billboard creation :
float dist = model.getBounds().getMaxCenterDistance()*7/10;
TransformGroup textTransform = new TransformGroup(0f, 0.05f, -dist);
TextBillboard textConc = TextBillboard.createFixedHeight(0.06f,
ZeroPointLocation.CENTER_CENTER, 0f, text, color, font);
textConc.setPickable(false);
textTransform.addChild(textConc);
model.getTransformGroup().addChild(textTransform);
I hope you will be able to help me. Thank you in advance.