The widgets are different sizes probably because they have different default fonts. If they have the same fonts and the same widths, they should have the same natural width. However, the actual width can be affected by how they are placed in the window, and there are often good reasons to use different fonts for these widgets.
The simplest solution in your case is to have each widget fill the container in the x axis. This makes sure that, regardless of their natural width, they will expand to fill the window from edge to edge:
title.pack(fill="x")
content_text.pack(fill="x")
If these are your only two widgets you'll want to go a step further and specify additional options to get proper resize behavior:
title.pack(fill="x")
content_text.pack(fill="both", expand=True)