You can do something like this using VertexRenderingFunction.
GraphPlot[{{A -> C, "go"}, {C -> B, "gone"}, {C -> D, "went"}, {C -> C, "loop"}},
DirectedEdges -> True,
VertexRenderingFunction -> ({{White, Disk[#, 0.15]},
AbsoluteThickness[2], Circle[#, 0.15],
If[MatchQ[#2, A | B], Circle[#, 0.12], {}], Text[#2, #]} &)]

Here is an awkward and fragile alternative with one big advantage: you can interactively rearrange the graph with the drawing tools (double click). I could not find a way to keep the vertex graphics inside of GraphicsComplex using VertexRenderingFunction, which is what allows the vertices to be dragged in the default GraphPlot.
vertex = {{White, Disk[#2, 0.12]}, AbsoluteThickness[2],
Circle[#2, 0.12], If[MatchQ[#, A | B], Circle[#2, 0.15], {}],
Text[#, #2]} &;
GraphPlot[{{A -> C, "go"}, {C -> B, "gone"}, {C -> D, "went"}, {C -> C, "loop"}},
DirectedEdges -> True, VertexLabeling -> True] /. {Text -> vertex, Framed -> (# &)}
